home *** CD-ROM | disk | FTP | other *** search
- #if ! defined( DCB_LASS_HEADER )
-
- /*
- ** Author: Samuel R. Blackburn
- ** CI$: 76300,326
- ** Internet: sammy@sed.csc.com
- **
- ** You can use it any way you like.
- */
-
- #define DCB_CLASS_HEADER
-
- class CDeviceControlBlock : public _DCB
- {
- public:
-
- CDeviceControlBlock();
- CDeviceControlBlock( const DCB * source );
-
- /*
- ** Destructor should be virtual according to MSJ article in Sept 1992
- ** "Do More with Less Code:..."
- */
-
- virtual ~CDeviceControlBlock();
-
- /*
- ** Methods
- */
-
- void Copy( const CDeviceControlBlock& source );
- void Copy( const DCB *source );
- };
-
- #endif // OVERLAPPED_CLASS_HEADER
-